home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 2000 November / cd joystick no120 novembre 2000 cd 1.iso / data / demos / gunlok / data1.cab / Program_Executable_Files / scripts / crate_frag.gsh < prev    next >
Text File  |  2000-08-22  |  911b  |  37 lines

  1. // defines the fragmented crate
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_FRAGCRATE_GSH
  8. #define INCLUDED_FRAGCRATE_GSH
  9.  
  10. ////////////////////////////////////////////////////////////////////////////////////
  11.  
  12. #include "defaults.gsh"
  13.  
  14. hierarchy Hcy_Fragcrate
  15. {
  16.     file    "objects\fragcrate.rif"
  17.     name    "fragcrate"
  18.     hotspot none
  19. }
  20.  
  21. role Rol_Fragcrate : Rol_FragObject
  22. {
  23.     shape       Hcy_Fragcrate
  24.     identifier "fragcrate"
  25. }
  26.  
  27. frag data Frg_Crate
  28. {
  29.     role Rol_Fragcrate
  30.     scale 2
  31. }
  32.  
  33. ////////////////////////////////////////////////////////////////////////////////////
  34.  
  35. // end wrapper - for preventing multiple or recursive inclusions
  36. #endif // !INCLUDED_FRAGCRATE_GSH
  37.